home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / asmbatch.arc / ASM2COM.BAT next >
DOS Batch File  |  1986-06-12  |  487b  |  25 lines

  1. echo off
  2. REM Format: ASM2COM filename [options]
  3. if .%1 == . goto nosource
  4. if exist %1 goto bad-ext
  5. if not exist %1.asm goto nofile
  6. masm %1 %1 %1 nul /N%2
  7. if errorlevel 1 goto endall
  8. rem echo Ctrl-C to skip LINK
  9. rem pause
  10. link %1,%1,nul,nul
  11. erase %1.obj
  12. exe2bin %1 %1.com
  13. erase %1.exe
  14. goto endall
  15. :nosource
  16. echo No source file specified...
  17. goto endall
  18. :bad-ext
  19. echo ".ASM" must NOT be specified
  20. goto endall
  21. :nofile
  22. echo Source file does not exist
  23. :endall
  24. echo on
  25.